ComponentOne DataGrid for WPF and Silverlight
C1.Silverlight.DataGrid Namespace / DataGridRowCollection Class / AsEnumerable(Predicate<DataGridRow>,Predicate<DataGridGroupRow>) Method
The predicate.
The recursion predicate. Where to process children rows in a group or not.

In This Topic
    AsEnumerable(Predicate<DataGridRow>,Predicate<DataGridGroupRow>) Method
    In This Topic
    Returns the row collection as IEnumerable. i.e. All rows that are not DataGridGroupRow: AsEnumerable((r) => !(r is DataGridGroupRow), null); i.e. All currently rows being shown (include group children of visible groups): AsEnumerable(null, (g) => g.GroupRowsVisibility == Visibility.Visible)
    Syntax

    Parameters

    predicate
    The predicate.
    recursionPredicate
    The recursion predicate. Where to process children rows in a group or not.
    See Also